home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-12-07 | 411 b | 33 lines | [TEXT/R*ch] |
- /***
- *
- * ListFile.bob - List a text file with line numbers.
- *
- ***/
-
- main ()
- {
- if (getfile("TEXT"))
- ProcessFile();
- else
- print("ERROR: Couldn't get file\n");
- }
-
-
- ProcessFile ( ; c, i, line)
- {
- line = "";
- i = 1;
-
- while ((c = getc(stdin)) != -1) {
- line += c;
- if (c == 13) {
- print(i++, ":\t", line);
- line = "";
- }
- }
- if (sizeof(line) != 0)
- print(i, ": ", line, "\n");
- print("<END>\n");
- }
-
-